home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / programs / zdcs201.zip / ZDCS.NEW < prev    next >
Text File  |  1993-02-02  |  5KB  |  130 lines

  1.  
  2.  
  3. ZDCS 2.01 Release Notes
  4. -----------------------
  5.  
  6.  
  7. ZDCSFC
  8. ------
  9. Internal changes needed for the newly implemented Ziplab/ZDCS connection.
  10.  
  11. ZDCSFC & ZDCSDB
  12. ---------------
  13. Enough is enough!  Supershell has been removed from the code.  Let's see
  14. what this solves - I expect it to be most of the problems.
  15.  
  16. ZDCSFC & ZDCSDB
  17. ---------------
  18. Corrected a minor oops in the search of the DOS path when looking for
  19. PKUNZIP.EXE and/or ARJ.EXE.  Symptoms include floppy access for no apparent
  20. reason.
  21.  
  22. ZDCSDR
  23. ------
  24. I think I've tracked down the ficticous 100% duplicate problem.  Under a
  25. very specific set of circumstances involving how many members were in
  26. the previous and currently processing archive, the stack was completely
  27. collapsing.  This also corrects the case where all archives would show
  28. a CRC32 of 20202020.
  29.  
  30. Small cosmetic change in the duplicate report.  Replaced "* Path
  31. information not available *" with "* N/A *".  This could save substantial
  32. amounts of disk space for the report file when running on large systems.
  33.  
  34. ZDCSFC & ZDCSDB
  35. ---------------
  36. Corrected an error in the 'truncate other file type' routines.
  37.  
  38.  
  39.  
  40.  
  41. ZDCS 2.0 Release Notes
  42. ----------------------
  43.  
  44. This will be the first time I've ever released a ZDCS version with
  45. a known problem.  The Supershell memory feature seems to have a problem
  46. when used on a system that contains an ASPI-capable SCSI controller AND
  47. an operating environment that uses the advanced features of the ASPI
  48. specification (Netware, Desqview).  Basically, what happens is that
  49. the system will lock up.
  50.  
  51. The temporary solution is to D/L ZDCS-QEMM.ZIP from The Hacker Central
  52. and follow the enclosed instructions.
  53.  
  54. The permanant solution is in research at several locations right now, and
  55. a maintainance release of ZDCS will be made available as soon as possible.
  56.  
  57. If you have this problem with ZDCS,  please don't register until this
  58. problem is corrected.  I'd rather lose a registration than have an
  59. unhappy user.  I would have held this release, but that was impractical.
  60.  
  61. ===========================================================================
  62.  
  63. Pre-testing an upload and ARJ.  This is also mentioned in the
  64. documentation, but I wanted to make sure it was clear to everyone.
  65.  
  66. ARJ is in a beta cycle right now, so I have not yet implemented upload
  67. pre-testing for ARJ files - on the chance that what I do now will have
  68. to be re-done in a month.  There will be a maintainance release of ZDCS
  69. to address this when the next version of ARJ is released.
  70.  
  71. ===========================================================================
  72.  
  73. This feature managed to get left out of the documentation completely.
  74. Fortunately, it's nothing major.  The following are the beta notes for
  75. the external archive conversion shell, build into ZDCSDB.EXE
  76.  
  77. ---------------------------------------------------------------
  78. A recent experience with one of the Internet archive CD-ROMs
  79. gave me the idea for this feature.  If you have unsupported archive format
  80. files on your CD (such as ARC), this is the solution.  Create a batch file
  81. in your ZDCS directory named ZDCS-ext.BAT (ext is the extension of the
  82. unsupported files)  Enclosed is my own ZDCS-ARC.BAT file.
  83.  
  84. ZDCSDB will process normally until it encounters a file of the specified
  85. archive type.  At that point, ZDCSDB will swap itself out of memory and
  86. execute the batch file, passing it three command line parameters.
  87.  
  88. After the batch file executes, the screen is restored and processing
  89. continues.
  90.  
  91. This is my ARC conversion and database add batch file:
  92. --------------------------------------------------
  93.  
  94. REM %1 is the fully qualified FSpec of the currently processing file
  95. REM %2 is the Filename with Extension     - No drive/path information
  96. REM %3 is the Filename without Extension  - No drive/path information
  97. REM E:\TMP is a temporary work directory on any hard drive
  98.  
  99. REM Copy the file from the CD-ROM (or wherever it is) to the work directory
  100. copy %1 e:\tmp
  101.  
  102. REM Convert the archive format to ZIP
  103. ZZAP e:\tmp\%2
  104.  
  105. REM Process the newly created ZIP file with ZDCSFC (which will perform the
  106. REM database add)  Note the word UPLOAD - it MUST be there.
  107. zdcsfc e:\tmp\%3ZIP UPLOAD
  108.  
  109. REM Get rid of the file.  ZZAP removes the old file after the conversion.
  110. DEL e:\tmp\%3ZIP
  111.  
  112. REM if you're using a utility that doesn't, you should also
  113. DEL e:\tmp\%2
  114.  
  115.  
  116. ----------------------------------------------------
  117.  
  118. You will notice that I'm calling the ZZAP utility do do my archive type
  119. conversion.  This is a truly NIFTY utility that does it's job and does it
  120. painlessly.  I tested using version 6.0, but the latest version is 6.5c.
  121.  
  122. For more info about this utility,  contact the author:
  123.  
  124. Ross Neilson Wentworth
  125. 1422 Elkgrove Circle, #3
  126. Venice  CA  90291
  127.  
  128. ==========================================================================
  129.  
  130.